control-freak-ide/server/nodejs/tsconfig.json
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

29 lines
485 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "./build",
"rootDir": "./lib"
},
"compileOnSave": false,
"filesGlob": [
"./lib/**/*.ts"
],
"exclude": [
"node_modules"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"./typings/index.d.ts",
"./lib/index.ts",
"./lib/routes.ts",
"./lib/test/index.spec.ts",
"./lib/test/routes.spec.ts"
]
}