pint/tsconfig.json

28 lines
565 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",
2022-07-07 05:29:00 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"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"
]
}