mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 13:29:01 +00:00
21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
module.exports = () => ({
|
||
|
compilerOptions: {
|
||
|
lib: ['es2019', 'es2020.promise', 'es2020.bigint', 'es2020.string', 'DOM'],
|
||
|
noImplicitAny: false,
|
||
|
module: 'es2020',
|
||
|
target: 'es5',
|
||
|
jsx: 'react',
|
||
|
allowJs: true,
|
||
|
moduleResolution: 'node',
|
||
|
skipLibCheck: true,
|
||
|
esModuleInterop: true,
|
||
|
allowSyntheticDefaultImports: true,
|
||
|
resolveJsonModule: true,
|
||
|
noEmit: false,
|
||
|
incremental: true,
|
||
|
},
|
||
|
exclude: ['node_modules', '**/*.test.js', '*.js'],
|
||
|
});
|