mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
17 lines
405 B
JSON
17 lines
405 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", "js/**/*.ts"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|