31 lines
551 B
JSON
31 lines
551 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strict": true,
|
||
|
|
"declaration": false,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"lib": [
|
||
|
|
"DOM",
|
||
|
|
"ESNext"
|
||
|
|
],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"preserveConstEnums": true,
|
||
|
|
"sourceMap": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*",
|
||
|
|
"demo/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"**/*.test.ts"
|
||
|
|
]
|
||
|
|
}
|