1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-10-16 06:17:32 +00:00
triennale-appunti-steffo/tsconfig.json

32 lines
586 B
JSON
Raw Permalink Normal View History

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