29 lines
645 B
JSON
29 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"outDir": "dist/types",
|
|
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"isolatedModules": true,
|
|
"emitDeclarationOnly": true,
|
|
// "noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noErrorTruncation": true,
|
|
// "moduleResolution": "nodenext"
|
|
"moduleResolution": "bundler",
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/dev.dist.ts"]
|
|
}
|