CSSモジュールからテーマをインポートしようとしていますが、TypeScriptで「モジュールを見つけることができません」というエラーが表示され、テーマは実行時に適用されません。 Webpackの設定に問題があると思いますが、どこに問題があるのかわかりません。
次のツールを使用しています。
"TypeScript": "^2.0.3"
"webpack": "2.1.0-beta.25"
"webpack-dev-server": "^2.1.0-beta.9"
"react": "^15.4.0-rc.4"
"react-toolbox": "^1.2.3"
"node-sass": "^3.10.1"
"style-loader": "^0.13.1"
"css-loader": "^0.25.0"
"sass-loader": "^4.0.2"
"sass-lint": "^1.9.1"
"sasslint-webpack-plugin": "^1.0.4"
これが私のwebpack.config.js
var path = require('path');
var webpack = require('webpack');
var sassLintPlugin = require('sasslint-webpack-plugin');
module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/dev-server',
'./src/index.tsx',
],
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: 'http://localhost:8080/',
filename: 'dist/bundle.js',
},
devtool: 'source-map',
resolve: {
extensions: ['.webpack.js', '.web.js', '.ts', '.tsx', '.js'],
},
module: {
rules: [{
test: /\.js$/,
loader: 'source-map-loader',
exclude: /node_modules/,
enforce: 'pre',
}, {
test: /\.tsx?$/,
loader: 'tslint-loader',
exclude: /node_modules/,
enforce: 'pre',
}, {
test: /\.tsx?$/,
loaders: [
'react-hot-loader/webpack',
'awesome-TypeScript-loader',
],
exclude: /node_modules/,
}, {
test: /\.scss$/,
loaders: ['style', 'css', 'sass']
}, {
test: /\.css$/,
loaders: ['style', 'css']
}],
},
externals: {
'react': 'React',
'react-dom': 'ReactDOM'
},
plugins: [
new sassLintPlugin({
glob: 'src/**/*.s?(a|c)ss',
ignoreFiles: ['src/normalize.scss'],
failOnWarning: false, // Do it.
}),
new webpack.HotModuleReplacementPlugin(),
],
devServer: {
contentBase: './'
},
};
と私 App.tsx
インポートしようとしている場所:
import * as React from 'react';
import { AppBar } from 'react-toolbox';
import appBarTheme from 'react-toolbox/components/app_bar/theme.scss'
// local ./theme.scss stylesheets aren't found either
interface IAppStateProps {
// No props yet
}
interface IAppDispatchProps {
// No state yet
}
class App extends React.Component<IAppStateProps & IAppDispatchProps, any> {
constructor(props: IAppStateProps & IAppDispatchProps) {
super(props);
}
public render() {
return (
<div className='wrapper'>
<AppBar title='My App Bar' theme={appBarTheme}>
</AppBar>
</div>
);
}
}
export default App;
タイプセーフなスタイルシートモジュールのインポートを有効にするには、他に何が必要ですか?
TypeScriptは.ts
または.tsx
以外のファイルがあることを認識していないため、インポートに不明なファイルサフィックスがある場合はエラーをスローします。
他の種類のファイルをインポートできるwebpack構成がある場合、これらのファイルが存在することをTypeScriptコンパイラーに伝える必要があります。そのためには、適切な名前でモジュールを宣言する宣言ファイルを追加します。
宣言するモジュールのコンテンツは、ファイルタイプに使用されるwebpackローダーによって異なります。 *.scss
ファイルをsass-loader→css-loader→style-loaderを介してパイプするWebpack構成では、インポートされたモジュールのコンテンツ、および正しいモジュール宣言は次のようになります。
// declaration.d.ts
declare module '*.scss';
ローダーがcss-modules用に構成されている場合は、次のように宣言を拡張するだけです。
// declaration.d.ts
declare module '*.scss' {
const content: {[className: string]: string};
export default content;
}
ここに私のために機能する完全な設定があります(これに1時間の苦労と試行錯誤をしました-誰かが同じ問題に遭遇した場合):
TypeScript + WebPack + Sass
_webpack.config.js
_
_module.exports = {
//mode: "production",
mode: "development", devtool: "inline-source-map",
entry: [ "./src/app.tsx"/*main*/ ],
output: {
filename: "./bundle.js" // in /dist
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [".ts", ".tsx", ".js", ".css", ".scss"]
},
module: {
rules: [
{ test: /\.tsx?$/, loader: "ts-loader" },
{ test: /\.scss$/, use: [
{ loader: "style-loader" }, // to inject the result into the DOM as a style block
{ loader: "css-modules-TypeScript-loader"}, // to generate a .d.ts module next to the .scss file (also requires a declaration.d.ts with "declare modules '*.scss';" in it to tell TypeScript that "import styles from './styles.scss';" means to load the module "./styles.scss.d.td")
{ loader: "css-loader", options: { modules: true } }, // to convert the resulting CSS to Javascript to be bundled (modules:true to rename CSS classes in output to cryptic identifiers, except if wrapped in a :global(...) pseudo class)
{ loader: "sass-loader" }, // to convert SASS to CSS
// NOTE: The first build after adding/removing/renaming CSS classes fails, since the newly generated .d.ts TypeScript module is picked up only later
] },
]
}
};
_
また、プロジェクトに_declarations.d.ts
_を追加します。
_// We need to tell TypeScript that when we write "import styles from './styles.scss' we mean to load a module (to look for a './styles.scss.d.ts').
declare module '*.scss';
_
そして、あなたは_package.json
_の開発依存でこれらすべてを必要とします:
_ "devDependencies": {
"@types/node-sass": "^4.11.0",
"node-sass": "^4.12.0",
"css-loader": "^1.0.0",
"css-modules-TypeScript-loader": "^2.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"TypeScript": "^3.4.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
}
_
次に、定義したCSSクラスを含む_mystyle.d.ts
_の隣に_mystyle.scss
_を取得する必要があります。これは、TypeScriptモジュールとしてインポートし、次のように使用できます。
_import * as styles from './mystyles.scss';
const foo = <div className={styles.myClass}>FOO</div>;
_
CSSは自動的に読み込まれ(style
要素としてDOMに挿入されます)、CSSクラスの代わりに.scssの暗号化された識別子を含み、ページのスタイルを分離します(:global(.a-global-class) { ... }
)。
インポートされたmystyles.d.tsは古いバージョンであり、コンパイル中に生成されたばかりの新しいバージョンではないため、CSSクラスを追加、削除、または名前を変更するたびに最初のコンパイルは失敗しますに注意してください。もう一度コンパイルしてください。
楽しい。