mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00

Motivation: - Most test frameworks expect modules - I'm told they're the future Changes: - Every typescript source file is now an es6 module - Build system is now webpack (tho rollup makes nicer outputs) - Outputs of buildsystem are one js file per entry point (background, content, commandline_frame) - These bundled js files are generated by traversing the dependency graph of each entry point
15 lines
344 B
JSON
15 lines
344 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
// outDir not used by webpack, just for debugging.
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "ES2017",
|
|
"lib": ["ES2017","dom"],
|
|
"typeRoots": ["@types", "node_modules/web-ext-types/"]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|