mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
28 lines
543 B
JSON
28 lines
543 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",
|
|
"modern/**/*.ts",
|
|
"modern/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"demo/built",
|
|
"modern/src/Dashboard.tsx"
|
|
]
|
|
}
|