mirror of
https://lavaforge.org/spotizerr/spotizerr.git
synced 2025-12-24 02:39:14 -05:00
25 lines
991 B
JSON
25 lines
991 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017", // Specify ECMAScript target version
|
|
"module": "ES2020", // Specify module code generation
|
|
"strict": true, // Enable all strict type-checking options
|
|
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
|
|
"skipLibCheck": true, // Skip type checking of declaration files
|
|
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file.
|
|
"outDir": "./static/js",
|
|
"rootDir": "./src/js"
|
|
},
|
|
"include": [
|
|
"src/js/**/*.ts",
|
|
"src/js/album.ts",
|
|
"src/js/artist.ts",
|
|
"src/js/config.ts",
|
|
"src/js/main.ts",
|
|
"src/js/playlist.ts",
|
|
"src/js/queue.ts",
|
|
"src/js/track.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules" // Specifies an array of filenames or patterns that should be skipped when resolving include.
|
|
]
|
|
} |