mirror of
https://github.com/sigmasternchen/tagify
synced 2025-03-15 07:08:55 +00:00
21 lines
394 B
JSON
21 lines
394 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
},
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|