mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
e8cd85f54a
This change adds basic, non-optimal support for Typescript with webpack. It functions well in development mode and deployment boots ProDOS. There are probably many ways this configuration can be sped up, but I haven't investigated that yet. Note that no Typescript files are added in this change; it is merely a configuration change.
24 lines
495 B
JSON
24 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"js/**/*"
|
|
]
|
|
} |