17 lines
336 B
JSON
17 lines
336 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"*": ["node_modules/*"],
|
|
"./*": ["./*"],
|
|
"./*.html": ["./*"],
|
|
"./*.html?raw": ["./*"]
|
|
}
|
|
},
|
|
"include": ["examples/**/*.js"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|