scripts/tsconfig.json

14 lines
412 B
JSON
Raw Normal View History

2022-12-31 10:15:23 +00:00
{
"compilerOptions": {
2023-02-01 05:49:45 +00:00
"target": "es2020",
2022-12-31 10:15:23 +00:00
"strict": true,
"moduleResolution": "Node",
"strictNullChecks": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*", "./node_modules/@types/node/index.d.ts"] // https://github.com/parcel-bundler/parcel/issues/8275#issuecomment-1173048866
2022-12-31 10:15:23 +00:00
}