accords-library.com/tsconfig.json

25 lines
600 B
JSON
Raw Normal View History

2021-11-03 22:46:45 +00:00
{
"compilerOptions": {
2022-02-24 04:34:26 +00:00
"target": "ESNext",
2021-11-03 22:46:45 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"importHelpers": true,
2021-11-03 22:46:45 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2022-09-05 15:02:22 +00:00
"baseUrl": "src",
"noUncheckedIndexedAccess": true
2021-11-03 22:46:45 +00:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}