pint/tsconfig.json

22 lines
533 B
JSON
Raw Normal View History

2022-07-07 05:29:00 +00:00
{
"compilerOptions": {
2022-07-10 02:11:18 +00:00
"target": "es6",
"lib": ["dom", "dom.iterable", "esnext"],
2022-07-07 05:29:00 +00:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-07-10 02:11:18 +00:00
"jsx": "preserve",
"strictNullChecks": false
2022-07-07 05:29:00 +00:00
},
"include": ["src"]
2022-07-07 05:29:00 +00:00
}