28 lines
499 B
JSON
28 lines
499 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"pretty": true
|
|
},
|
|
"filesGlob": [
|
|
"typings/index.d.ts",
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"scripts/",
|
|
"tests/"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules",
|
|
"typings",
|
|
"src/types"
|
|
],
|
|
"compileOnSave": false
|
|
}
|