28 lines
512 B
JSON
28 lines
512 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"allowJs": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"outDir": "./",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"pretty": true,
|
|
"baseUrl": "./src",
|
|
"rootDir": "./src",
|
|
"watch": false,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"compileOnSave": false,
|
|
|
|
"filesGlob": [
|
|
"./src/**/*.ts"
|
|
],
|
|
"files": [
|
|
"./src/index.ts",
|
|
"./src/main.ts"
|
|
]
|
|
} |