mirror of
https://github.com/replicatedhq/ttl.sh.git
synced 2026-05-13 03:47:00 +00:00
28 lines
590 B
JSON
28 lines
590 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es6", "dom"],
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"sourceMap": true,
|
|
"preserveConstEnums": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"outDir": "build",
|
|
"pretty": true
|
|
},
|
|
"include": [
|
|
"src/**/*.js",
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/**/*_test.ts",
|
|
"src/test/**/*.ts"
|
|
]
|
|
}
|