mirror of
https://github.com/captbaritone/webamp
synced 2024-11-22 07:40:51 +00:00
18 lines
434 B
JSON
18 lines
434 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", "js/**/*.tsx"],
|
|
"exclude": ["node_modules", "**/*.spec.ts", "demo/built"]
|
|
}
|