mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
* Add tsconfig.json and static module resolution for ts * Add trailing newline to tsconfig * Change tsc module to commonjs to support .json import * Add tsc as dependency and to scripts
22 lines
479 B
JSON
22 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"pretty": true
|
|
},
|
|
"include": [
|
|
"js/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|