mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
ce3631f3a2
* Refactor disk handling to allow disk processing to happen in a worker * Type cleanup * Convert format handlers to TypeScript * Convert CFFA to TypeScript
37 lines
763 B
JSON
37 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es6",
|
|
"lib": ["DOM", "ES6"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"types/*"
|
|
],
|
|
"js/*": [
|
|
"js/*"
|
|
],
|
|
"test/*": [
|
|
"test/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"js/**/*",
|
|
"test/**/*",
|
|
"*.config.js"
|
|
]
|
|
}
|