24 lines
1.2 KiB
JSON
24 lines
1.2 KiB
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
/* Basic Options */
|
||
|
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
|
||
|
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
|
||
|
"allowJs": false /* Allow javascript files to be compiled. */,
|
||
|
"resolveJsonModule": true,
|
||
|
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
|
||
|
"baseUrl": ".",
|
||
|
/* Strict Type-Checking Options */
|
||
|
"strict": true /* Enable all strict type-checking options. */,
|
||
|
"strictNullChecks": true /* Enable strict null checks. */,
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"moduleResolution": "node",
|
||
|
"isolatedModules": true
|
||
|
},
|
||
|
"exclude": ["node_modules", "public", ".cache", ".vscode", ".next"],
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
||
|
}
|