1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2025-02-16 15:53:58 +00:00
triennale-appunti-steffo/tsconfig.json

32 lines
592 B
JSON
Raw Normal View History

2022-02-02 05:36:02 +01:00
{
"compilerOptions": {
"target": "es5",
2022-02-02 16:11:01 +01:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2022-02-02 05:36:02 +01:00
"allowJs": true,
"skipLibCheck": true,
2022-02-02 05:38:39 +01:00
// "strict": true, // not now
2022-02-02 05:36:02 +01:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2022-02-02 16:11:01 +01:00
"incremental": true,
"strict": false
2022-02-02 05:36:02 +01:00
},
2022-02-02 16:11:01 +01:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2022-02-02 05:36:02 +01:00
}