899a89cb3b
* Add vite, typescript and prettier * Configure vite * Fix tsconfig error * Fix manifest json * Move manifest json to root * Bug fix * Move back manifest json to public
14 lines
285 B
JSON
14 lines
285 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "Node",
|
|
"outDir": "dist",
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src"]
|
|
}
|