mirror of
https://github.com/mrkite/soundsmith.git
synced 2024-12-05 10:52:21 +00:00
25 lines
525 B
JSON
25 lines
525 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "system",
|
||
|
"noEmitOnError": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"removeComments": true,
|
||
|
"strictNullChecks": true,
|
||
|
"outFile": "fta.js",
|
||
|
"target": "ES5",
|
||
|
"lib": ["dom", "es2015"],
|
||
|
"sourceMap": true
|
||
|
},
|
||
|
"files": [
|
||
|
"src/fta.ts",
|
||
|
"src/ftaplayer.ts",
|
||
|
"src/es5503.ts",
|
||
|
"src/handle.ts"
|
||
|
]
|
||
|
}
|