2019-04-12 14:37:47 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"experimentalDecorators": true,
|
2019-06-24 17:26:03 +00:00
|
|
|
"outDir": "./dist",
|
2019-04-12 14:37:47 +00:00
|
|
|
"sourceMap": true,
|
2019-05-23 17:59:08 +00:00
|
|
|
"moduleResolution": "node",
|
2019-04-12 14:37:47 +00:00
|
|
|
"strictPropertyInitialization" : true,
|
|
|
|
"lib": ["es6", "dom"],
|
2019-06-21 18:09:39 +00:00
|
|
|
"baseUrl": "./"
|
2019-04-12 14:37:47 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"Tone/**/*.ts", "test/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|