onedrive/tsconfig.json

32 lines
585 B
JSON
Raw Normal View History

2021-06-22 11:58:37 +00:00
{
"compilerOptions": {
"target": "es5",
2021-06-29 15:20:35 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2021-06-22 11:58:37 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2021-06-29 15:20:35 +00:00
"jsx": "preserve",
2022-02-02 08:43:17 +00:00
"noImplicitAny": false,
"incremental": true
2021-06-22 11:58:37 +00:00
},
2021-06-29 15:20:35 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2021-06-22 11:58:37 +00:00
}