mirror of
https://github.com/cupcakearmy/fantus.git
synced 2024-11-01 04:54:13 +01:00
30 lines
535 B
JSON
30 lines
535 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2018",
|
||
|
"module": "esnext",
|
||
|
"jsx": "preserve",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"noEmit": true,
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
],
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
]
|
||
|
}
|