mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
26 lines
467 B
JSON
26 lines
467 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"declaration": true,
|
||
|
"rootDir": "src/component",
|
||
|
"outDir": "dist/types",
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"scripthost"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/component/**/*.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|