29 lines
485 B
JSON
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"
|
|
]
|
|
}
|