jsoncrack.com/tsconfig.json

23 lines
557 B
JSON
Raw Normal View History

2022-01-30 13:09:56 +03:00
{
"compilerOptions": {
2022-01-30 18:24:46 +03:00
"baseUrl": ".",
2023-05-11 21:43:16 +03:00
"target": "ES6",
2022-01-30 13:09:56 +03:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2022-02-03 19:56:48 +03:00
"incremental": true,
"noImplicitAny": false
2022-01-30 13:09:56 +03:00
},
2022-02-06 13:20:35 +03:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
2022-01-30 13:09:56 +03:00
"exclude": ["node_modules"]
}