accords-library.com/tsconfig.json

41 lines
741 B
JSON
Raw Permalink Normal View History

2021-11-03 22:46:45 +00:00
{
"compilerOptions": {
2022-10-29 14:22:49 +00:00
"target": "ES6",
2022-11-12 20:14:42 +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-10-16 22:44:25 +00:00
"baseUrl": "src"
2022-09-05 15:29:24 +00:00
// "noUncheckedIndexedAccess": true
2022-11-12 20:14:42 +00:00
,
"plugins": [
{
"name": "next"
}
]
2021-11-03 22:46:45 +00:00
},
2022-11-12 20:14:42 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2021-11-03 22:46:45 +00:00
}